home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PRectQuery.cpp ------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PRectQuery.html
- *-------------------------------------------------------------------------
- */
-
- #include "PRectQuery.h"
-
- PRectQuery::PRectQuery(ePMQuery op)
- {
- long x[4];
-
- PQuery query(op, x, 16);
-
- xLeft = x[0];
- yTop = x[1];
- xRight = x[2];
- yBottom = x[3];
- }
-
- // end of PRectQuery.cpp
-